  * {
      margin:0; /*It removes outer spacing on each element*/
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Header */
    .header {
      background-color: #333;
      color: white;
      padding: 15px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: relative;
    }

   /* Logo */
    .logo {
      display: flex;
      align-items: center;
      color: white;
      font-size: 24px;
      font-weight: bold;
      text-decoration: none;
    }

    .logo img {
      height: 40px;
      margin-right: 10px;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: white;
      margin: 4px 0;
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      color: white;
      text-decoration: none;
      padding: 8px;
    }

    .menu a:hover {
      background-color: #555;
      border-radius: 4px;
    }

    /* Responsive Menu */
    @media (max-width: 768px) {
      .hamburger {
        display: flex;
      }

      .menu {
        display: none;
        flex-direction: column;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 10px 0;
      }

      .menu.active {
        display: flex;
      }
    }

   